home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / unix / syquest.sit / AUX info next >
Text File  |  1990-04-16  |  2KB  |  42 lines

  1. Some hints: If you want to boot A/UX from the cartridge don't forget to make
  2. a swap partition on it and set the kernel value SWAPCNT to the size of the
  3. partition. Don't make eschatology partitions - they are for backup and you
  4. don't need to backup the backup disk. A good way of copying files to the
  5. syquest is to mount it as /syquest and do
  6. find /dir -depth -print | cpio -puldma /syquest
  7. which will create /syquest/dir and copy over /dir and all subdirectories to
  8. the cartridge. Next time you do it, leave out the u in puldma and only files
  9. that have changed since the last copy will be copied. Great. This method will
  10. also copy over the files in /dev.
  11.  
  12. More hints: You don't need to partition each cartridge. Just format it, make
  13. sure block 0 is blank (use dd to check or to clear it) use pname to recognize
  14. slice 31 and you can use it as c?d?s31. It won't work under MacOS of course.
  15. To be able to boot from a cartridge you will need a small MacOS partition,
  16. and root and swap partitions.
  17.  
  18. If your formatting software does not let you create A/UX partitions then you
  19. will have to do them under A/UX using dp. You can also format the cartridge
  20. under A/UX using the diskformat command and size 512. I suggest making a
  21. script to use dp so that you can do more than one cartridge quickly. An
  22. example might be something like:
  23.  
  24. dp /dev/rdsk/c4d0s31 << EOF
  25. I7
  26. a1     8  86662 SyQuest y 0 86662 0 1 y y
  27. wq
  28. EOF
  29.  
  30. Make sure you always unmount the disk before removing it. Else you lose data.
  31. The SCSI disk driver should be modified so that the cartridge can only be
  32. removed when a umount is done. This is a simple modification and I'll do it
  33. someday when I figure out how to modify the A/UX generic disk driver to
  34. include my SyQuest routines in place of the sd routines.
  35.  
  36. Remember to do a fsck on the device before you mount it each time. It's easy
  37. to forget since it is not done automatically (unless you put the drive into
  38. /etc/fstab). The consequences of using a disk that has not been fsck'ed can
  39. be serious if there are filesystem errors on the disk that fsck could have
  40. fixed. (Eg these errors can occur if the Mac crashes or you forget to unmount
  41. the disk before removing it).
  42.